744454c2创建于 2025年6月26日历史提交
const pluginLess = require("eleventy-plugin-less");

module.exports = function (eleventyConfig) {
    eleventyConfig.addPlugin(pluginLess);
    eleventyConfig.addPassthroughCopy('src/asset');
    // eleventyConfig.addPassthroughCopy("**/*.jpg");
    eleventyConfig.addPassthroughCopy('src/style/reset.css');
    // eleventyConfig.addWatchTarget('src/style');
    // eleventyConfig.addPassthroughCopy("bundle.css");

    	// the default is "copy"
	// eleventyConfig.setServerPassthroughCopyBehavior("passthrough");

    return {
        dir: {
            input: "src",
            output: "dist"
        }
    }
};