簡體   English   中英

Vue-cli 5 發布單個 js 並從 html 頁面加載

[英]Vue-cli 5 publish a single js and load from html page

我正在使用 webpack 在 Vue 2 中開發一個應用程序。 目前只在遠程目錄中發布一個 '.js' 文件,並且會從一個 Sharepoint 頁面加載。 我正在嘗試遷移到 Vue 3,但我不能只發布 de js 文件,並且它不會從 Sharepoint 頁面加載。

這是我用於 vue 2 的舊 webpack 配置

var path = require('path')
var webpack = require('webpack')

module.exports = {
    entry: './src/main.js',
    output: {
        path: 'Q:\\js',
        publicPath: '/dist/',
        filename: `appName.${process.env.NODE_ENV === 'production' ? 'prod' : 'jmp'}.js`,
    },
    module: {
        rules: [
            {
                test: /\.css$/,
                use: [
                    'vue-style-loader',
                    'css-loader'
                ],
            },
            {
                test: /\.scss$/,
                use: [
                    'vue-style-loader',
                    'css-loader',
                    'sass-loader'
                ],
            },
            {
                test: /\.sass$/,
                use: [
                    'vue-style-loader',
                    'css-loader',
                    'sass-loader?indentedSyntax'
                ],
            },
            {
                test: /\.vue$/,
                loader: 'vue-loader',
                options: {
                    loaders: {
                        // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
                        // the "scss" and "sass" values for the lang attribute to the right configs here.
                        // other preprocessors should work out of the box, no loader config like this necessary.
                        'scss': [
                            'vue-style-loader',
                            'css-loader',
                            'sass-loader'
                        ],
                        'sass': [
                            'vue-style-loader',
                            'css-loader',
                            'sass-loader?indentedSyntax'
                        ]
                    },
                    // other vue-loader options go here
                    preserveWhitespace: false,
                }
            },
            {
                test: /\.js$/,
                loader: 'babel-loader',
                exclude: /node_modules/
            },
            {
                test: /\.(png|jpg|gif|svg)$/,
                loader: 'file-loader',
                options: {
                    name: '[name].[ext]?[hash]'
                }
            }
        ]
    },
    resolve: {
        alias: {
            'vue$': 'vue/dist/vue.esm.js'
        },
        extensions: ['*', '.js', '.vue', '.json']
    },
    devServer: {
        historyApiFallback: true,
        noInfo: true,
        overlay: true
    },
    performance: {
        hints: false
    },
    devtool: '#eval-source-map'
}

if (process.env.NODE_ENV === 'production') {
    module.exports.devtool = '#source-map'
    // http://vue-loader.vuejs.org/en/workflow/production.html
    module.exports.plugins = (module.exports.plugins || []).concat([
        new webpack.DefinePlugin({
            'process.env': {
                NODE_ENV: '"production"'
            }
        }),
        new webpack.optimize.UglifyJsPlugin({
            sourceMap: true,
            compress: {
                warnings: false
            }
        }),
        new webpack.LoaderOptionsPlugin({
            minimize: true
        })
    ])
}

vue 2 的 package.json 片段

"scripts": {
    "dev": "cross-env NODE_ENV=development webpack --watch",
    "build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},

這里是 vue 3 的 vue.config.js

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
    transpileDependencies: true,
    outputDir: 'Q:\\js\\prova',
    publicPath: '/dist/',
    filenameHashing: false,
    runtimeCompiler: true,
    configureWebpack: config => {
        config.entry = './src/main.js';
        config.optimization.splitChunks = false;
        if(process.env.NODE_ENV === "production") {
            config.output.filename = 'prova-vue-3.[name].prod.js';
        } else {
            config.output.filename = 'prova-vue-3.[name].jmp.js';
        }

        config.module = {
            rules: [
                {
                    test: /\.css$/,
                    use: [
                        'vue-style-loader',
                        'css-loader'
                    ],
                },
                {
                    test: /\.scss$/,
                    use: [
                        'vue-style-loader',
                        'css-loader',
                        'sass-loader'
                    ],
                },
                {
                    test: /\.sass$/,
                    use: [
                        'vue-style-loader',
                        'css-loader',
                        'sass-loader?indentedSyntax'
                    ],
                },
                {
                    test: /\.vue$/,
                    loader: 'vue-loader',
                    options: {
                        loaders: {
                            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
                            // the "scss" and "sass" values for the lang attribute to the right configs here.
                            // other preprocessors should work out of the box, no loader config like this necessary.
                            'scss': [
                                'vue-style-loader',
                                'css-loader',
                                'sass-loader'
                            ],
                            'sass': [
                                'vue-style-loader',
                                'css-loader',
                                'sass-loader?indentedSyntax'
                            ]
                        },
                        // other vue-loader options go here
                        preserveWhitespace: false,
                    }
                },
                {
                    test: /\.js$/,
                    loader: 'babel-loader',
                    exclude: /node_modules/
                },
                {
                    test: /\.(png|jpg|gif|svg)$/,
                    loader: 'file-loader',
                    options: {
                        name: '[name].[ext]?[hash]'
                    }
                }
            ]
        };



        config.devServer = {
            historyApiFallback: true,
            noInfo: true,
            overlay: true
        };
        config.performance = {
            hints: false
        };
        config.devtool = 'eval-source-map';

    },
    chainWebpack: config => {
        config.plugins.delete('html')
        config.plugins.delete('prefetch')
    }
})

和我的 vue 3 的 package.json

"scripts": {
    "build": "vue-cli-service build",
    "dev": "vue-cli-service build --mode development --watch",
    "serve": "cross-env NODE_ENV=development vue-cli-service serve"
},

有什么幫助嗎?

提前致謝

最后我發現了我的錯誤。 部署創建了 2 個文件,因為在我的路由器中,我對組件使用了延遲加載。 這是我的一個愚蠢的錯誤。 感謝 IVO GELOV 的評論

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM