gpt4 book ai didi

npm - 如何在 Node_Modules 中导入特定文件

转载 作者:搜寻专家 更新时间:2023-10-30 22:25:21 25 4
gpt4 key购买 nike

好的,所以我正在为 VueJS 使用 webpack-simple。我安装了一个名为 AdminLTE 的主题。我试图通过下面的代码导入其中的 Bootstrap 文件。当我运行 npm run build 时,应用程序在 src 文件夹内搜索,但 AdminLTE 在 node_modules 文件夹内。

我应该只导入我需要的那些文件,还是应该导入整个文件夹。以及如何正确导入这些文件?

我的 main.js 文件

import Vue from 'vue'
import App from './App.vue'

// import BootstrapCSS from 'admin-lte/bootstrap/bootstrap.min.css'
// import BootstrapCSSTheme from 'admin-lte/bootstrap/bootstrap-theme.min.css'
import 'admin-lte/bootstrap/bootstrap.min.css'
import 'admin-lte/bootstrap/bootstrap-theme.min.css'


new Vue({
el: '#app',
render: h => h(App)
})

我的 Webpack 配置

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

module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: './dist/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader','css-loader']
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
}
},
devServer: {
historyApiFallback: true,
noInfo: 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
})
])
}

最佳答案

您可能需要使用相对路径来引用目录。

如果您的 main.js 在/src 中,则使用:

import '../node_modules/admin-lte/bootstrap/bootstrap.min.css'

关于npm - 如何在 Node_Modules 中导入特定文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46138691/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com