# 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
```
Thanks to [0pt1m1z3r](https://github.com/0pt1m1z3r) for adding this feature and example.