Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1017 Bytes

README.md

File metadata and controls

36 lines (22 loc) · 1017 Bytes

Multimedia Project: Minimum Wage

Export static files

You can export static files simply running the following command (See Next.js document)

npm run build

Remember to check all the exported paths have been properly configured in exportPathMap in next.config.js.

All the static assets will be exported to ./out folder. You can use the following command to run a simple server to see the exported results.

node staticServer.js

Export for production

npm run build

All of the links to static assets will be added with prefix: appConfig/assetPrefix, which can be configured in config.js

Useful links