Skip to content

Commit

Permalink
🔧 add snowpack config
Browse files Browse the repository at this point in the history
define usefull aliases
  • Loading branch information
diepoe committed Oct 5, 2021
1 parent a5115e6 commit c68fb17
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions snowpack.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Example: astro.config.mjs

// @type-check enabled!
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
// helpful tooltips, and warnings if your exported object is invalid.
// You can disable this by removing "@ts-check" and `@type` comments below.

// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
alias: {
$components: "./src/components",
$layouts: "./src/layouts",
$: "./src",
},
});

0 comments on commit c68fb17

Please sign in to comment.