在程序根目錄右鍵打開cmd,輸入
npm run build
這時就會進入打包的步驟,打包好之后就會在程序根目錄出現一個dist的文件夾,里面有一個index.html文件和另一個dist的文件夾。
這里要說明幾點:
- 最外層的dist文件夾不能用,要把index.html頁面放到網站(web容器)的根目錄。
- 刪除webpack.base.config.js文件里面的
{ test: /\.(html|tpl|ejs)$/, loader: 'html-loader' }
3. 修改webpack.prod.config.js文件output屬性中的publicPath的值,寫上服務器的域名或者IP。
output: { publicPath: 'http://10.8.4.94/dist/', // 修改 https://iv...admin 這部分為你的服務器域名 filename: '[name].[hash].js', chunkFilename: '[name].[hash].chunk.js' }
