linaria.config.js 330 B

123456789101112
  1. // linaria 配置详见 https://github.com/callstack/linaria/blob/master/docs/CONFIGURATION.md#options
  2. module.exports = {
  3. rules: [
  4. {
  5. action: require("linaria/evaluators").shaker,
  6. },
  7. {
  8. test: /node_modules[\/\\](?!@tarojs[\/\\]components)/,
  9. action: "ignore"
  10. }
  11. ]
  12. }