nuxt-community / amp-module

AMP Module for Nuxt 2
https://codesandbox.io/s/github/nuxt-community/amp-module/
MIT License
204 stars 36 forks source link

loader without sass #243

Closed reslear closed 3 years ago

reslear commented 3 years ago

plugin use sass-loader https://github.com/nuxt-community/amp-module/blob/239aa289c0da4b3c481c73bc6d988ee88f9b1002/templates/plugin.js#L16 how to add styles without sass? (vanilla postcss)

farnabaz commented 3 years ago

Do you installed the latest version?

Just use .css extension. Module automatically detects it is css file and will remove sass-loader

https://github.com/nuxt-community/amp-module/blob/master/lib/module.js#L35-L40

https://github.com/nuxt-community/amp-module/blob/master/templates/plugin.js#L21

reslear commented 3 years ago

@farnabaz thx :)