vue cli3 項目打包

詳細信息到 vue-cli3官網

新建 vue.config.js 文件

// 在這裏配置
module.exports = {
    // 基本路徑
    publicPath:"./",
    // 輸出文件目錄
    outputDir: 'dist',
    // webpack-dev-server 相關配置
    devServer: {
        // port: 8888,
        // ...
    },
}

在 router.js 裏

//把mode寫成hash模式
mode: 'hash'

運行

npm run build
相關文章
相關標籤/搜索