Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 451 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 451 Bytes

Webpack with GOV.UK Frontend

This project demonstrates how to compile GOV.UK Frontend JavaScript using Webpack.

To build webpack

npm run build

To run

npx http-server

ES6 imports for GOV.UK Frontend components

If importing individual components from a directory, use

import { Accordion } from 'govuk-frontend-fake';

If from individual file, use:

import Accordion from 'govuk-frontend-fake/govuk/components/accordion/accordion';