Initial commit: landing page Gruperly con Eleventy
This commit is contained in:
17
eleventy.config.js
Normal file
17
eleventy.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
export default function (eleventyConfig) {
|
||||
// Permite que el servidor de desarrollo acepte conexiones desde otros
|
||||
// dispositivos de la red local (por ejemplo: http://192.168.x.x:8081).
|
||||
eleventyConfig.setServerOptions({
|
||||
host: "0.0.0.0",
|
||||
});
|
||||
|
||||
return {
|
||||
dir: {
|
||||
input: "src",
|
||||
output: "dist",
|
||||
includes: "_includes",
|
||||
layouts: "_includes/layouts",
|
||||
data: "_data",
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user