File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,10 @@ which contains Patterns and all its dependencies:
4747
4848Alternatively, you can [ download a bundle at patternslib.com] ( http://patternslib.com/download.html ) .
4949
50+ To start the development server, use ` make serve ` or ` npx yarn start ` and access the demo pages via [ http://localhost:3001/ ] ( http://localhost:3001/ ) .
51+ The files are watched and the bundle re-built on changes.
52+ You can access the bundle directly at [ http://localhost:3001/bundle.min.js ] ( http://localhost:3001/bundle.min.js ) .
53+
5054
5155## Layout
5256
@@ -70,7 +74,7 @@ You'll need to have a Sass compiler installed.
7074To demo the patterns, simply type ` make serve ` to install the necessary
7175dependencies and to start a simple Node.js HTTP server.
7276
73- You can then visit http://localhost:4001 to see a site with demos.
77+ You can then visit http://localhost:3001 to see a site with demos.
7478
7579Alternatively, patterns can also be demoed through the
7680[ Patternslib.com] ( http://patternslib.com ) website, which is open-source. The
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ module.exports = () => {
8484 if ( process . env . NODE_ENV === "development" ) {
8585 config . devServer . static . directory = path . resolve ( __dirname , "../" ) ;
8686 config . devServer . watchFiles = [ "src/" ] ;
87+ config . devServer . port = "3001" ;
8788 // Add a strict Content-Security-Policy without 'unsafe-inline' to the dev
8889 // server for testing CSR issues.
8990 //config.devServer.headers["Content-Security-Policy"] =
You can’t perform that action at this time.
0 commit comments