File tree 2 files changed +6
-1
lines changed
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:
47
47
48
48
Alternatively, you can [ download a bundle at patternslib.com] ( http://patternslib.com/download.html ) .
49
49
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
+
50
54
51
55
## Layout
52
56
@@ -70,7 +74,7 @@ You'll need to have a Sass compiler installed.
70
74
To demo the patterns, simply type ` make serve ` to install the necessary
71
75
dependencies and to start a simple Node.js HTTP server.
72
76
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.
74
78
75
79
Alternatively, patterns can also be demoed through the
76
80
[ 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 = () => {
84
84
if ( process . env . NODE_ENV === "development" ) {
85
85
config . devServer . static . directory = path . resolve ( __dirname , "../" ) ;
86
86
config . devServer . watchFiles = [ "src/" ] ;
87
+ config . devServer . port = "3001" ;
87
88
// Add a strict Content-Security-Policy without 'unsafe-inline' to the dev
88
89
// server for testing CSR issues.
89
90
//config.devServer.headers["Content-Security-Policy"] =
You can’t perform that action at this time.
0 commit comments