mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
57 lines
1.3 KiB
Markdown
57 lines
1.3 KiB
Markdown
# Using build.styleResources with Nuxt.js
|
|
|
|
This is usefull when you need to inject some variables and mixins in your pages without having to import them everytime.
|
|
|
|
Nuxt.js uses https://github.com/yenshih/style-resources-loader to achieve this behaviour.
|
|
|
|
You need to specify the patterns/path you want to include for the given pre-processors: `less`, `sass`, `scss` or `stylus`
|
|
|
|
:warning: You cannot use path aliases here (`~` and `@`), you need to use relative or absolute paths.
|
|
|
|
`nuxt.config.js`:
|
|
|
|
```js
|
|
{
|
|
build: {
|
|
styleResources: {
|
|
scss: './assets/variables.scss',
|
|
less: './assets/*.less',
|
|
// sass: ...,
|
|
// scss: ...
|
|
options: {
|
|
// See https://github.com/yenshih/style-resources-loader#options
|
|
// Except `patterns` property
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
:warning: If you want to use `@import` in these `styleResources` files, you should use path aliase (`~@`) like this
|
|
|
|
```scss
|
|
@import '~@/assets/other.scss';
|
|
```
|
|
|
|
Then in your pages, you can use directly:
|
|
|
|
`pages/index.vue`
|
|
|
|
```vue
|
|
<template>
|
|
<div class="main">
|
|
<p>Page with SCSS</p>
|
|
<p><nuxt-link to="/less">LESS</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
/* ~/assets/variables.scss is injected automatically here */
|
|
.main {
|
|
background: $main;
|
|
}
|
|
</style>
|
|
```
|
|
|
|
Thanks to [0pt1m1z3r](https://github.com/0pt1m1z3r) for adding this feature and example.
|