Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

reactjs - AG-grid scss/css token issue in react

I have an issue with a working with ag-grid-react. I keep getting an error that reads:

ERROR in ./node_modules/ag-grid-community/dist/styles/ag-grid.scss 8:73 Module parse failed: Unexpected token (8:73)

My webpack rule is:


   

     module.exports = {
      module: {
        rules: [
          {
            test: /.css$/,
            use: ["style-loader", "css-loader"]
          },
        ],
      },
      module: {
        rules: [
          {
            test: /.s[ac]ss$/i,
            use: [
              // Creates `style` nodes from JS strings
              "style-loader",
              // Translates CSS into CommonJS
              "css-loader",
              // Compiles Sass to CSS
              "sass-loader",
            ],
          },
        ],
      },
      module: {
        rules: [
          {
            test: /.(png|jpg|gif)$/i,
            use: [
              {
                loader: 'url-loader',
                options: {
                  limit: 8192,
                },
              },
            ],
          },
        ],
      },
      entry: {
        main: ['whatwg-fetch', 'core-js/stable', 'raf/polyfill']
      },
    
      resolve: {
        modules: [srcDirectory, 'node_modules'],
        extensions: ['.ts', '.tsx', '.js', '.jsx', '.json', '.html', '.css','.scss']
      },


.tsx code is


    import React, { useState } from 'react';
    import { Card } from '@jpmuitk/card';
    import { Panel } from '@jpmuitk/panel';
    import {AgGridReact, AgGridColumn} from 'ag-grid-react';
    
    import 'ag-grid-community/dist/styles/ag-grid.scss';
    import 'ag-grid-community/dist/styles/ag-theme-balham.scss';


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...