
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@farmfe/js-plugin-less
Advanced tools
 
  
  English | 简体ä¸ć–‡
Support compiling Less in Farm.
To begin, you'll need to install less and @farmfe/js-plugin-less:
npm install less @farmfe/js-plugin-less --save-dev
or
yarn add -D less @farmfe/js-plugin-less
or
pnpm add -D less @farmfe/js-plugin-less
Configuring the plugin in farm.config.ts:
import { defineFarmConfig } from '@farmfe/core/dist/config';
import Less from '@farmfe/js-plugin-less'; //  import the plugin
export default defineFarmConfig({
  compilation: {
    input: {
      index: './index.html',
    },
    output: {
      path: './build',
    },
  },
  plugins: [
    // use the less plugin.
    Less({
      // custom options here
    }),
  ],
});
Type:
type lessOptions = import('less').options | ((loaderContext: LoaderContext) => import('less').options})
Default: { relativeUrls: true }
Here you can pass any Less specific options to the @farm/js-plugin-less.See the Less options for any available options you need.
Type:
type additionalData =
  | string
  | ((content: string, resolvePath:string) => string);
Default: undefined
Appends Less code to the actual entry file.
In this case, the @farm/js-plugin-less will not override the source but just prepend the entry's content.
In actual development, this becomes useful, we don't need to add new files.
Since you're injecting code, this will break the source mappings in your entry file. Often there's a simpler solution than this, like multiple Less entry files.
stringexport default defineFarmConfig({
  compilation: {
    input: {
      index: './index.html',
    },
    output: {
      path: './build',
    },
  },
  plugins: [
    // use the less plugin.
    Less({
      additionalData: `@hoverColor: #f10215;`
    }),
  ],
});
functionexport default defineFarmConfig({
  compilation: {
    input: {
      index: './index.html',
    },
    output: {
      path: './build',
    },
  },
 plugins: [farmLessPlugin({
    additionalData: (content:string, resolvePath:string) => {
      if (path.basename(resolvePath,'.less') === 'index') {
        return `@hoverColor: #f10215;` + content;
      }
    },
  }) ],
});
Type: boolean
Default: false
Whether to generate sourceMap
If not set, it will read the compilation.sourcemap configuration in the farm configuration
Type: string | undefined
Default: undefined
@farm/js-plugin-lesscompatible with Less 3 and 4 versions
The special implementation option determines which implementation of Less to use. If you not config, it will find the less in you local node_modules.
FAQs
support less compile for farm.
The npm package @farmfe/js-plugin-less receives a total of 105 weekly downloads. As such, @farmfe/js-plugin-less popularity was classified as not popular.
We found that @farmfe/js-plugin-less demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.