gpt4 book ai didi

javascript - 如何在vue组件中为@import ~stylus设置webpack?

转载 作者:行者123 更新时间:2023-12-02 23:53:49 26 4
gpt4 key购买 nike

我尝试在我的vue组件中导入我的variables.stylus,但是当我使用@import "~@themes/variables.stylus"时,webpack抛出错误:无法定位@导入文件 ~@themes/variables.stylus.styl

网络包配置

alias: {
'vue$': 'vue/dist/vue.esm.js',
themes: path.resolve(__dirname, './src/themes'),
'@': resolve('src'),
}

{
test: /\.styl$/,
loader: ['style-loader', 'css-loader', 'autoprefixer-loader?browsers=last 5 version', 'stylus-loader']
}

最佳答案

我认为应该是这样的:

@import '~@/themes/variables.stylus';

Webpack 将别名 @ 替换为您在配置中的路径,在本例中为 src。因此导入变成了src/themes/variables.stylus

关于javascript - 如何在vue组件中为@import ~stylus设置webpack?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55512453/

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