-
Notifications
You must be signed in to change notification settings - Fork 101
Styling or Loading Style #241
manchumahara
started this conversation in
General
-
We are using webpack with vue 3. We found no style is loaded. I see the step by step guides ask to add css manually or seems no css style is loaded via the package automatic, is this true ? https://v3.vue-final-modal.org/examples/stepByStep
I am I missing something? my module setup in webpack is like below.
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.css$/,
use: [
'vue-style-loader',
{
loader: 'css-loader',
options: { esModule: false }
},
'postcss-loader'
],
},
]
},
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment