fix(config): 👷 set assets as external path for css bundler in production mode
This commit is contained in:
parent
d44771dab9
commit
eb887377a5
|
@ -3,7 +3,9 @@ import { cssBundler } from '@jotsr/smart-css-bundler/fresh'
|
|||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
cssBundler(['./src/stylesheets/main.css'] //TODO fix bundler out paths , { bundleSubDir: 'css' }
|
||||
cssBundler(
|
||||
['./src/stylesheets/main.css'], //TODO fix bundler out paths , { bundleSubDir: 'css' }
|
||||
{ externalPaths: ['assets'] },
|
||||
),
|
||||
],
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue