wp9map Svelte Themes

Wp9map

a feasability study - web map of Geological Survey Organisations plus project-related partner institutions .. by scientific areas (linked keywords from ROR, OpenAIRE, CORDIS, Interreg, WikiData, EGDI, GSEU-WP9, ..)

Svelte + Vite

This template should help get you started developing with Svelte in Vite.

VS Code + Svelte.

notes

npm create vite@latest  

-> wp9map
select Svelte
select JavaScript

cd wp9map  
npm install  
npm run dev  

in app.svelte ->

    <script>  
     let count = $state(0);  
    </script>  
    <button onclick={() => count++}>  
     clicks: {count}  
    </button>  

legacy -> runes mode !!


npx svelte-add@latest tailwindcss  
npm i  
npm run dev  
tailwind.config.js ??? ->  
/** @type {import('tailwindcss').Config} */  
export default {  
  content: ["./src/**/*.{html,js,svelte,ts}",  
    './pages/**/*.{html,js}',  
    './components/**/*.{html,js}',  
  ],  
  
  theme: {  
    extend: {}  
  },  
  
  plugins: []  
};  

Top categories

Loading Svelte Themes